/*
 *  SF3KtoProT - Converts Star Fighter 3000 music to Amiga ProTracker format
 *  Fednet file decompression
 *  Copyright (C) 2009  Chris Bazley
 */

#ifndef DECOMP_H
#define DECOMP_H

#include <stdbool.h>

extern void *load_compressed(bool verbose, const char *filepath);

#endif /* DECOMP_H */
